home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SHELL.ARC / Shell / h / Label < prev    next >
Encoding:
Text File  |  1994-04-08  |  841 b   |  31 lines

  1. #ifndef __Shell_Label_h
  2. #define __Shell_Label_h
  3.  
  4. #ifndef __Shell_h
  5. #include "Shell.Shell.h"
  6. #endif
  7.  
  8.  
  9. Shell_rectblock *Shell_Label(
  10.     Shell_windblock *wind, int x, int y, 
  11.     int forecol, int backcol, const char *text
  12.     );
  13.     /* Prints some text in a graphics window            */
  14.     /* This reserves a separate rectangle for the text, so don't     */
  15.     /* have too many.                        */
  16.  
  17. void Shell_ReLabel( Shell_rectblock *rect, const char *text);
  18.     /* Replaces existing text with new text.            */
  19.     /* The window is resized/redrawn if nescesary.            */
  20.  
  21. Shell_rectblock    *Shell_Labelf( 
  22.     Shell_windblock *wind, int x, int y, 
  23.     int forecol, int backcol, const char *fmt, ...
  24.     );
  25.  
  26. void    Shell_ReLabelf( Shell_rectblock *rect, const char *fmt, ...);
  27. void    Shell_ReLabelfSlow( Shell_rectblock *rect, const char *fmt, ...);
  28.     /* These are as above, but use like printf            */
  29.  
  30. #endif
  31.